home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_05 / 1005012a < prev    next >
Encoding:
Text File  |  1995-11-01  |  137 b   |  6 lines

  1.  
  2. #define atoi(s)    (int)_Stoul(s, 0, 10)
  3. #define atol(s)    (long)_Stoul(s, 0, 10)
  4. #define strtoul(s, end, base)   _Stoul(s, end, base)
  5.  
  6.